runtime.p.runSafePointFn (field)

13 uses

	runtime (current package)
		mgcmark.go#L1183: 		for !(gp.preempt && (preemptible || sched.gcwaiting.Load() || pp.runSafePointFn != 0)) {
		mgcmark.go#L1205: 	for !(gp.preempt && (preemptible || sched.gcwaiting.Load() || pp.runSafePointFn != 0)) {
		proc.go#L2057: 			atomic.Store(&p2.runSafePointFn, 1)
		proc.go#L2069: 		if atomic.Cas(&p.runSafePointFn, 1, 0) {
		proc.go#L2089: 		if s == _Psyscall && p2.runSafePointFn == 1 && atomic.Cas(&p2.status, s, _Pidle) {
		proc.go#L2120: 		if p2.runSafePointFn != 0 {
		proc.go#L2147: 	if !atomic.Cas(&p.runSafePointFn, 1, 0) {
		proc.go#L3064: 	if pp.runSafePointFn != 0 && atomic.Cas(&pp.runSafePointFn, 1, 0) {
		proc.go#L3281: 	if pp.runSafePointFn != 0 {
		proc.go#L3452: 	if sched.gcwaiting.Load() || pp.runSafePointFn != 0 {
		proc.go#L4464: 	if gp.m.p.ptr().runSafePointFn != 0 {
		runtime2.go#L742: 	runSafePointFn uint32 // if 1, run sched.safePointFn at next safe point